home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / system / dabutil2.zip / DOSMENU.TXT < prev    next >
Text File  |  1991-01-16  |  2KB  |  86 lines

  1. A
  2. Print README file on printer
  3. print readme;
  4. pause
  5. B
  6. Print DABUTIL2.REG file on printer (Registration Form)
  7. print dabutil2.reg;
  8. pause
  9. C
  10. Demonstrate CATALOG (Formatted list of all files on disk)
  11. echo catalog -all;
  12. catalog -all;
  13. pause
  14. D
  15. Demonstrate DI      (Information about disk format)
  16. echo di;
  17. di;
  18. pause
  19. E
  20. Demonstrate DIRM    (Directory manager)
  21. dirm
  22. F
  23. Demonstrate DOSMENU (DOS Menu utility; example use with SETPRT)
  24. dosmenu printer.txt
  25. G
  26. Demonstrate DOW     (DOW returns weekday; Z.BAT displays day)
  27. echo z;
  28. z;
  29. pause
  30. H
  31. Demonstrate DTIME   (Formatted display of date and time)
  32. dtime;
  33. pause
  34. I
  35. Demonstrate ENC     (Simple file encryption)
  36. echo Encrypting PRINTER.BAT with password "unicorn"- Original file:;
  37. type printer.bat;
  38. pause;
  39. enc printer.bat go.enc unicorn;
  40. echo Encrypted file:;
  41. type go.enc;
  42. pause;
  43. enc go.enc go.une unicorn;
  44. echo un-Encrypted file:;
  45. type go.une;
  46. erase go.enc;
  47. erase go.une;
  48. pause
  49. J
  50. Demonstrate EVENTMAN (Set up unattended program execution)
  51. eventman
  52. K
  53. Demonstrate FF      (Find all occurences of files on disk) 
  54. echo ff *.com;
  55. ff *.com;
  56. pause;
  57. echo ff *.exe -a;
  58. ff *.exe -a;
  59. pause
  60. L
  61. Demonstrate FILEMAN (File Manager;Copy, Move, Delete, Edit, Attr)
  62. fileman
  63. M
  64. Demonstrate LD      (List all directories on disk)
  65. echo ld;
  66. ld;
  67. pause;
  68. echo ld -s;
  69. ld -s;
  70. pause
  71. N
  72. Demonstrate PROCESS (Real-time execution of events and processes)
  73. process
  74. O
  75. Demonstrate SBE     (Text file editor)
  76. sbe readme
  77. P
  78. Demonstrate SD      (Sort current directory)
  79. sd endts;
  80. dir;
  81. pause
  82. Q
  83. Demonstrate SETPRT  (Set Printer parameters and fonts)
  84. echo SETPRT \10 \10 "Test string" \10 \10;
  85. SETPRT \10 \10 "Test string" \10 \10;
  86. pause